home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 138 / 138.xpi / chrome / stumbleupon.jar / content / ratingDialog.xul < prev    next >
Extensible Markup Language  |  2009-05-22  |  2KB  |  79 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://stumbleupon/skin/ratingDialog.css" type="text/css"?>
  5.  
  6. <!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
  7.  
  8. <dialog id="stumble_rating_dialog" title="StumbleUpon Review"
  9.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.   buttons="accept,cancel"
  11.   ondialogaccept="return doOK();"
  12.   ondialogcancel="return doCancel();"
  13.   onload="init()">
  14.  
  15. <stringbundleset id="stringbundleset">
  16.     <stringbundle id="bundle_stumble" src="chrome://stumbleupon/locale/stumbleupon.properties"/>
  17. </stringbundleset>
  18.  
  19. <script type="application/x-javascript" src="ratingDialog.js"/>
  20.  
  21. <popupset>
  22.     <popup id="tagspopup"/>
  23. </popupset>
  24.  
  25. <vbox style="margin:5px" align="center">
  26.     <label id="firstrater-prompt"
  27.         value="You are the first person to suggest this site."/>
  28.     <label value="Please add some tags and/or a review."/>
  29. <grid flex="1" style="margin:10px">
  30.   <columns>
  31.     <column flex="2"/>
  32.     <column flex="1"/>
  33.   </columns>
  34.  
  35.   <rows>
  36.     <row>
  37.     <vbox>
  38.         <spacer flex="1"/>
  39.         <label control="tags" value="Tags"/>
  40.         <spacer flex="1"/>
  41.     </vbox>
  42.     <textbox id="tags"
  43.             maxrows="14"
  44.             flex="1"
  45.             autocompletepopup="tagspopup"
  46.             inputtooltiptext="Enter Tag Terms separated by Commas"
  47.             ontextentered="handle_tags_textentered()"
  48.             ontextreverted="handle_tags_textreverted()"
  49.             onkeyup="handle_tags_keyup(event)"
  50.             onfocus="handle_tags_focus()"
  51.             onclick="tags_click_kludge('click')"
  52.             onblur="tags_click_kludge('blur')"
  53.             reflectpopuplabel="true"
  54.             sizetopopup="none"
  55.             cols="40"
  56.             maxLength="150"/>    
  57.     </row>
  58.     <row>
  59.     <label value=""/>
  60.     <label style="font-size:10px" value="spaces allowed in tags, separate with commas"/>
  61.     </row>
  62.     
  63.     <row>
  64.     <label control="review"  value="Review"/>
  65.     <textbox cols="40" multiline="true" rows="3" maxlength="1000" id="review"/>
  66.     </row>
  67.     
  68.     <row>
  69.     <label value=""/>
  70.     <label style="font-size:10px" value="(You can turn off this dialog in Toolbar Options)"/>    
  71.     </row>
  72.     
  73.   </rows>
  74. </grid>
  75.  
  76. </vbox>
  77.  
  78. </dialog>
  79.